home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Reach4.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  619 b   |  52 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       go1()
  8.     1:
  9.       go2()
  10.     2:
  11.       go3()
  12.     3, 4, #fillin:
  13.       leaveThisMovie()
  14.     #clickDone:
  15.       go4()
  16.   end case
  17. end
  18.  
  19. on goBack
  20.   stopSound2()
  21.   case gSection of
  22.     1:
  23.       goIntro()
  24.     2:
  25.       go1()
  26.     3:
  27.       go2()
  28.     4, #clickDone:
  29.       go3()
  30.     #fillin:
  31.       go4()
  32.   end case
  33. end
  34.  
  35. on leaveThisMovie
  36.   if iAmActivated(gMasterData) then
  37.     getPrintData()
  38.   end if
  39.   stopSound2()
  40.   cursor(4)
  41.   go(1, "Menu2")
  42. end
  43.  
  44. on notePadButton
  45.   DoNotepad()
  46. end
  47.  
  48. on continueNext
  49.   stopSound2()
  50.   go(the frame + 1)
  51. end
  52.